home *** CD-ROM | disk | FTP | other *** search
- /* Include needed for extended bbs support - WG7J */
- #ifndef _MAILFOR_H
- #define _MAILFOR_H
-
- #ifndef _AX25_H
- #include "ax25.h"
- #endif
-
- /*List of bbses we forward to, to check the R: lines for */
- #define FWDBBSLEN 9 /* call + optional ssid, eg. "KB7BHF-15" */
- #define NUMFWDBBS 32 /* Check for 32 bbs's max (arbitrary !) */
-
- /* In mailfor.c */
- extern char MyFwds[][FWDBBSLEN+1];
- extern int Numfwds;
- extern int Checklock;
- extern int Rreturn;
- extern int Rfwdcheck;
- extern int Rdate;
-
- /* List of area names to exclude from mail-for beacon */
- struct no_mf {
- struct no_mf *next;
- char area[9];
- };
- #define NULLMF (struct no_mf *)0
- extern struct no_mf *No_mf;
-
- #endif /*_MAILFOR_H*/
-